Implement this callback interface to receive triggers from a timer. More...
#include <timer.h>
Public Member Functions | |
virtual void | onTimer (Timer *timer)=0 |
This method is called at the end of each interval. |
Implement this callback interface to receive triggers from a timer.
Note: This interface is intended as a mix-in class and therefore does not provide refcounting.
virtual void onTimer | ( | Timer * | timer | ) | [pure virtual] |
This method is called at the end of each interval.
timer | The timer which calls. |